home *** CD-ROM | disk | FTP | other *** search
/ Monster Media 1994 #2 / Monster Media No. 2 (Monster Media)(1994).ISO / prog_bas / ivbsrc.zip / GTASKS.BAS < prev    next >
BASIC Source File  |  1992-09-15  |  756b  |  23 lines

  1. Type tagTASKENTRY
  2.   dwSize        As Long
  3.   hTASK         As Integer
  4.   hTaskParent   As Integer
  5.   hInst         As Integer
  6.   hModule       As Integer
  7.   wSS           As Integer
  8.   wSP           As Integer
  9.   wStackTop     As Integer
  10.   wStackMinimum As Integer
  11.   wStackBottom  As Integer
  12.   wcEvents      As Integer
  13.   hQueue        As Integer
  14.   szModule      As String * 10
  15.   wPSPOffset    As Integer
  16.   hNext         As Integer
  17. End Type
  18.  
  19. Declare Function TaskFirst Lib "ToolHelp.DLL" (TERec As tagTASKENTRY) As Integer
  20. Declare Function TaskNext Lib "ToolHelp.DLL" (TERec As tagTASKENTRY) As Integer
  21. Declare Function GetModuleFileName Lib "Kernel" (ByVal hModule As Integer, ByVal lpFilename As String, ByVal nSize As Integer) As Integer
  22.  
  23.